home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / makeflag.wnt < prev    next >
Encoding:
Text File  |  1993-12-30  |  1.4 KB  |  61 lines

  1. include <ntwin32.mak>
  2.  
  3. MAKE = nmake
  4.  
  5. #
  6. # The XXX_DIR variables below MUST have ABSOLUTE path. Since this file
  7. # is sourced from several directories relative path specification will
  8. # be simple wrong.
  9. #
  10. SRC_DIR = c:\users\gershon\sm\src
  11.  
  12. #
  13. # All libraries created will be installed into the LIB_DIR directory.
  14. #
  15. LIB_DIR = $(SRC_DIR)\lib
  16.  
  17. #
  18. # All includes files associated with the installed libraries will be
  19. # installed into the INC_DIR directory.
  20. #
  21. INC_DIR = $(SRC_DIR)\inc
  22.  
  23. #
  24. # All binaries created will be installed into the BIN_DIR directory.
  25. #
  26. BIN_DIR = $(SRC_DIR)\bin
  27.  
  28. #
  29. # Flags for Mircosoft C compiler, Windows NT release 3.1, August 1993.
  30. #
  31. IRITCC = cl386
  32. DFLAGS = -D__WINNT__ -D_X86_=1 -DWIN32 -D_MT -DRAND -W3 -nologo
  33. IRITLIB = $(implib)
  34. # CFLAGS = $(DFLAGS) 
  35. # IRITCONLINK = $(link) $(conflags)
  36. # IRITGUILINK = $(link) $(guiflags)
  37. CFLAGS = -Zi -Od  $(DFLAGS)
  38. IRITCONLINK = $(link) $(conflags) $(linkdebug)
  39. IRITGUILINK = $(link) $(guiflags) $(linkdebug)
  40. GRAPDRVS = wntdrvs.exe nuldrvs.exe
  41.  
  42. #
  43. # Default rule for compilation.
  44. #
  45. .c.obj:
  46.     $(IRITCC) $(CFLAGS) -I. -I$(INC_DIR) -c $<
  47.  
  48. #
  49. # All libraries.
  50. #
  51. PRSR_LIB = $(LIB_DIR)\prsr_lib.lib
  52. GEOM_LIB = $(LIB_DIR)\geom_lib.lib
  53. CAGD_LIB = $(LIB_DIR)\cagd_lib.lib
  54. MISC_LIB = $(LIB_DIR)\misc_lib.lib
  55. GIF_LIB = $(LIB_DIR)\gif_libl.lib
  56.  
  57. LIBS = $(GEOM_LIB) $(PRSR_LIB) $(CAGD_LIB) $(MISC_LIB) # $(GIF_LIB)
  58. W32CONLIBS = wsock32.lib $(conlibs)
  59. W32GUILIBS = wsock32.lib $(guilibs)
  60. W32GUIMTLIBS = wsock32.lib $(guilibsmt)
  61.